home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMIBEST2.ADF / Best of AMICUS 2 / Arc / AmigaARC.DOC < prev    next >
Text File  |  1987-07-22  |  6KB  |  151 lines

  1. AmigArc - Archive utility, Version 0.23, created on 03/14/87 at 20:10:07
  2.  
  3. Compatible with ARC v5.0
  4.  
  5. (C) COPYRIGHT 1986,87 by Raymond S. Brand; ALL RIGHTS RESERVED
  6. (C) COPYRIGHT 1985,86 by System Enhancement Associates; ALL RIGHTS RESERVED
  7.  
  8. Please refer all comments/inquiries/contributions to:
  9.  
  10.    US Snail:
  11.          Raymond S. Brand
  12.          503 Rowland Road
  13.          Fairfield Ct. 06430
  14.  
  15.    Modem:
  16.          Brand X Fido/SEAdog (141/255)
  17.          (203) 255-7729
  18.          300/1200/2400
  19.  
  20. Hello,
  21.    AmigArc v0.23 is a version of ARC v5.0 ported to the Amiga. As such, it
  22. can perform all of the normal ARC commands on '.ARC' files (for information
  23. on ARC commands, find a copy of ARC.DOC).
  24.  
  25. Changes for version 0.23:
  26.    1) Verbose ARChive listing now works with zero length files!
  27.  
  28. Changes for version 0.22:
  29.    1) No noteworthy (none were reported!) bugs were fixed in this release
  30.       and some of the code was cleaned up, and error reports now go to
  31.       stderr instead of stdout.
  32.    2) Control C is now supported (but could be better).
  33.    3) This version was compiled using Lattice 3.10 which found some dormant
  34.       bugs, and should be a little faster.
  35.    4) File dates are now set when a file is extracted even when the current
  36.       directory is not the target directory.
  37.  
  38. Known bugs remaining:
  39.    1) The NOT operator for wild card matching does not always work. The fix
  40.       looks to be a major rewrite of the WCmatch routines (sigh...).
  41.  
  42. Items of Note:
  43.    1) The Run command will NOT be supported.
  44.  
  45.    2) The current version uses the MSdos '.ARC' file structure. This means
  46.       that file names should follow MSdos conventions. The next version will
  47.       be able to use the full AmigaDos filenames, and will have an MSdos
  48.       compatibility option.
  49.  
  50.    3) Wild Cards are permitted in the filename portion of the template, but
  51.       NOT in the path. The Wild Card scheme used is:
  52.  
  53. /*
  54.  * WCmatch: Function to determine if the first string matches
  55.  *    the template in the second string. If the third parameter
  56.  *    is zero then case does NOT matter.
  57.  *
  58.  *    Returns:
  59.  *       1 if string matches template.
  60.  *       0 if string does NOT match template.
  61.  *       Any other value indicates a template syntax error.
  62.  *
  63.  *    19860308 Raymond S. Brand
  64.  *
  65.  *    Version 0.08
  66.  *
  67.  *    The following describes the syntax of a valid template.
  68.  *       Items in braces ('{' and '}') may be repeated zero or more times.
  69.  * 
  70.  * <template>  := <AGroup>
  71.  * 
  72.  * <AGroup>    := <PGroup>{&<PGroup>}  'AND'
  73.  *
  74.  * <PGroup>    := <LGroup>{|<LGroup>}  'OR'
  75.  *
  76.  * <Group>     := <LGroup>{|<LGroup>}  'or'
  77.  * 
  78.  * <LGroup>    := <SGroup>{<SGroup>}   'Match-String'
  79.  * 
  80.  * <SGroup>    := (<Group>)            'grouping'
  81.  *             := %                    'End-of-Name'
  82.  *             := ^<SGroup>            'NOT'
  83.  *             := <Literal1>
  84.  *             := ?                    'Any-Character'
  85.  *             := #<SGroup><MGroup>    'Zero-or-More Followed-By'
  86.  *             := *<MGroup>            'Zero-or-More-of-Any-Character'
  87.  *             := [<EnumList>]         'Enumeration-List'
  88.  * 
  89.  * <MGroup>    := <LGroup>
  90.  *             :=
  91.  *
  92.  * <EnumList>  := <EnumPart>{,<EnumPart>}
  93.  *
  94.  * <EnumPart>  := <Literal2>
  95.  *             := <Literal2>-<Literal2>   'All-Characters-From To'
  96.  * 
  97.  * <Literal1>  := <any printing character except:
  98.  *                   '#', '%', '^', '&', '*', '(', ')', '|', '\', '[',
  99.  *                   ']' and '?'>
  100.  *             := \<any printing character including the above>
  101.  * 
  102.  * <Literal2>  := <any printing character except:
  103.  *                   '\', '[', ']', '-' and ','>
  104.  *             := \<any printing character including the above>
  105.  *
  106.  *
  107.  *    NOTES:
  108.  *       The 'AND' and the 'OR' functions have an implicit 'End-of-Name'
  109.  *          function before their respective operators.
  110.  *       The 'or' function moves the internal name pointer just past the
  111.  *          first match that it finds.
  112.  *       The second form of <EnumPart> matches the current name character
  113.  *          if the first literal is less than or equal to the current name
  114.  *          character, and the current name character is less than or equal
  115.  *          to the second literal. Or if the first literal is less than the
  116.  *          current name character, or the current name character is less
  117.  *          than the second literal when the first literal is greater than
  118.  *          the second literal. An <EnumPart> will never match the name
  119.  *          terminator. e.g. 'a-f' will match 'a', 'b', 'c', 'd', 'e' and
  120.  *          'f'; Whereas, 'f-a' will match all characters except 'a', 'b',
  121.  *          'c', 'd', 'e' and 'f'.
  122.  *       The '*' operator is equivalent to '#?'.
  123.  */ 
  124.  
  125.    4) If you experience a problem or bug in the program, please send
  126.       a message describing what you were doing and what happened (be
  127.       specific) at:
  128.  
  129.          Brand X Fido/SEAdog (141/255)
  130.          (203) 255-7729
  131.  
  132.    5) Do NOT bother System Enhancement Associates about this program. They
  133.       have little to do with the Amiga version of ARC.
  134.  
  135.    6) Suggestions, comments, criticisms, etc. are welcome and encouraged.
  136.  
  137.    7) This version of AmigArc does not have a "timeout" but please try to
  138.       always use the latest version available.
  139.  
  140.    8) For the latest version of AmigArc check Brand X Fido or Amuse.
  141.  
  142.    9) To speed compression, ASSIGN ARCTEMP: RAM:
  143.  
  144.   10) The correct file size for AmigArc.022 is 50328 bytes.
  145.  
  146.  
  147.  
  148.                                  Raymond S. Brand
  149.                                       RSBX
  150.  
  151.